djbuch.kapitel_05
Class DominoServlet

java.lang.Object
  |
  +--HttpServlet
        |
        +--djbuch.kapitel_05.DominoServlet

public class DominoServlet
extends HttpServlet

Author:
Thomas Ekert
See Also:
Serialized Form

Constructor Summary
DominoServlet()
           
 
Method Summary
 void doGet(HttpServletRequest req, HttpServletResponse res)
          Einfaches Servlet Beispiel mit
- Ausgabe diverser Parameter
- Ausgabe der Cookies
- Anzeige des Angemeldeten Benutzers
- Demo einer Notes Session
- Demo einer HttpSession
 void doPost(HttpServletRequest req, HttpServletResponse res)
          HTTP Request von POST auf GET umleiten
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DominoServlet

public DominoServlet()
Method Detail

doGet

public void doGet(HttpServletRequest req,
                  HttpServletResponse res)
           throws java.io.IOException
Einfaches Servlet Beispiel mit
- Ausgabe diverser Parameter
- Ausgabe der Cookies
- Anzeige des Angemeldeten Benutzers
- Demo einer Notes Session
- Demo einer HttpSession

java.io.IOException

doPost

public void doPost(HttpServletRequest req,
                   HttpServletResponse res)
            throws java.io.IOException
HTTP Request von POST auf GET umleiten

java.io.IOException